home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / bluej / bluejsetup-203.exe / {app} / lib / chinese / templates / newclass / abstract.tmpl next >
Text File  |  2004-12-19  |  368b  |  24 lines

  1. $PKGLINE/**
  2.  * │Θ╧≤└α $CLASSNAME - ╘┌╒Γ└∩╕°│÷╢╘╒Γ╕÷└α╡─├Φ╩÷
  3.  * 
  4.  * @╫≈╒▀: 
  5.  * ╚╒╞┌: 
  6.  */
  7. public abstract class $CLASSNAME
  8. {
  9.     // ╩╡└²▒Σ┴┐ - ╙├─π╫╘╝║╡─▒Σ┴┐╠µ╗╗╧┬├µ╡─└²╫╙
  10.     int x;
  11.  
  12.     /**
  13.      * ╥╗╕÷╖╜╖¿╡─└²╫╙ - ╩╣╙├─π╫╘╝║╡─╦╡├≈╠µ┤·╦ⁿ
  14.      * 
  15.      * @▓╬╩² yú¼╖╜╖¿╡─╥╗╕÷╤∙▒╛▓╬╩²
  16.      * @╖╡╗╪ xú¼y╡─║═ 
  17.      */
  18.     public int sampleMethod(int y)
  19.     {
  20.         // ╘┌╒Γ└∩╝╙╚δ─π╡─┤·┬δ
  21.         return x + y;
  22.     }
  23. }
  24.